home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / ANSWERS / CH07_2.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  794b  |  36 lines

  1. #include "stdio.h"
  2.  
  3. void main()
  4. {
  5. int index, array1[10], array2[10], arrays[10];
  6.  
  7.    for(index = 0 ; index < 10 ; index = index + 1) {
  8.       array1[index] = 2 + 2 * index;
  9.       array2[index] = 10 * (index + 1);
  10.    }
  11.  
  12.    for(index = 0 ; index < 10 ; index = index + 1)
  13.       arrays[index] = array1[index] + array2[index];
  14.  
  15.    for(index = 0 ; index < 10 ; index = index + 1)
  16.       printf("%4d %4d + %4d = %4d\n", (index + 1), array1[index],
  17.                array2[index], arrays[index]);
  18. }
  19.  
  20.  
  21.  
  22. /* Result of execution
  23.  
  24.    1    2 +   10 =   12
  25.    2    4 +   20 =   24
  26.    3    6 +   30 =   36
  27.    4    8 +   40 =   48
  28.    5   10 +   50 =   60
  29.    6   12 +   60 =   72
  30.    7   14 +   70 =   84
  31.    8   16 +   80 =   96
  32.    9   18 +   90 =  108
  33.   10   20 +  100 =  120
  34.  
  35. */
  36.